@charset "UTF-8";
.ellipse {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w-full {
  width: 100%;
}

.page-title {
  margin-bottom: 0.58rem;
  font-size: 0.44rem;
  font-weight: bold;
  color: rgba(0, 160, 233, 0.9);
}

@media screen and (min-width: 751px) {
  .pc-show {
    display: block;
  }
  .m-show {
    display: none !important;
  }
}
@media screen and (max-width: 751px) {
  .m-show {
    display: block;
  }
  .pc-show {
    display: none !important;
  }
}
.layui-layer {
  border-radius: 0.2rem !important;
}

#header {
  position: sticky;
  top: 0;
  z-index: 11;
}
#header .top {
  background-color: #f1f1f1;
}
#header .top .content {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 0.5rem;
}
#header .top .content .tip {
  color: #dd3023;
}
#header .top .content .tip + .tip {
  margin-left: 0.35rem;
}
#header .header-wrap {
  padding-top: 0.5rem;
  background-color: #fff;
}
#header .header-wrap .header {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
#header .header-wrap .header .logo {
  display: block;
  height: 0.4rem;
  margin-bottom: 0.2rem;
}
#header .header-wrap .header .nav-container {
  display: flex;
  align-items: center;
}
#header .header-wrap .header .nav-container .nav-item {
  position: relative;
  display: block;
  color: #3e3a39;
  font-size: 0.18rem;
  white-space: nowrap;
}
#header .header-wrap .header .nav-container .nav-item + .nav-item {
  margin-left: 0.62rem;
}
#header .header-wrap .header .nav-container .nav-item .nav-link {
  display: block;
  height: 100%;
  color: #3e3a39;
  padding-bottom: 0.1rem;
}
#header .header-wrap .header .nav-container .nav-item .nav-child {
  transition: all 300ms;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 0.1rem 0;
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
  opacity: 0;
  box-shadow: 0.02rem 0.01rem 0.08rem 0rem rgba(7, 0, 2, 0.12);
  border-radius: 0rem 0rem 0.16rem 0.16rem;
}
#header .header-wrap .header .nav-container .nav-item .nav-child .nav-child-link {
  transition: all 300ms;
  display: block;
  white-space: nowrap;
  text-align: center;
  color: #000;
  font-size: 0.16rem;
  font-weight: bold;
  padding: 0.13rem 0.28rem;
}
#header .header-wrap .header .nav-container .nav-item .nav-child .nav-child-link:hover {
  color: #00a0e9;
}
#header .header-wrap .header .nav-container .nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  display: block;
  height: 0.03rem;
  transform: translateX(-50%);
  background-color: #00a0e9;
  transition: all 300ms;
}
#header .header-wrap .header .nav-container .nav-item:hover::after {
  width: 100%;
}
#header .header-wrap .header .nav-container .nav-item:hover .nav-child {
  opacity: 1;
  visibility: visible;
}
#header .header-wrap .header .nav-container .nav-item.active::after {
  width: 100%;
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  #header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }
  #header .header-wrap {
    padding-top: 0.2rem;
    border-bottom: 1px solid #f5f5f5;
  }
  #header .header-wrap .header {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 751px) {
  #header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
  }
  #header .top {
    position: relative;
    width: 100%;
    z-index: 10;
  }
  #header .header-wrap {
    padding-top: 0;
  }
  #header .header-wrap .header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #header .header-wrap .header .m-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.2rem;
    margin: 0.2rem auto;
  }
  #header .header-wrap .header .m-nav .search-link {
    width: 0.18rem;
  }
  #header .header-wrap .header .m-nav .logo {
    height: 0.2rem;
    margin-bottom: 0;
  }
  #header .header-wrap .header .m-nav .fold {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 0.2rem;
    height: 0.2rem;
  }
  #header .header-wrap .header .m-nav .fold i {
    display: block;
    border-top: 1Px solid #000;
  }
  #header .header-wrap .header .nav-container {
    display: none;
    position: fixed;
    top: 1rem;
    bottom: 0;
    width: 100%;
    padding: 0.4rem 0.2rem;
    margin: 0 auto 0;
    flex-shrink: 0;
    overflow-y: scroll;
    background-color: #fff;
    border-top: 1px solid #f1f1f1;
  }
  #header .header-wrap .header .nav-container .nav-item {
    border-bottom: 1px solid #f1f1f1;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-link.active::before {
    height: 0;
  }
  #header .header-wrap .header .nav-container .nav-item.active::after {
    width: 0 !important;
    display: none !important;
  }
  #header .header-wrap .header .nav-container .nav-item:hover::after {
    width: 0 !important;
    display: none !important;
  }
  #header .header-wrap .header .nav-container .nav-item > .nav-link {
    display: flex;
    align-items: center;
    position: relative;
    color: #3e3a39;
  }
  #header .header-wrap .header .nav-container .nav-item > .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    width: 0.2rem;
    transform: translateY(-50%);
    border-top: 2px solid #3e3a39;
  }
  #header .header-wrap .header .nav-container .nav-item > .nav-link::before {
    transition: all 300ms;
    content: "";
    position: absolute;
    right: 0.1rem;
    display: block;
    height: 0.2rem;
    transform: translateX(50%);
    border-left: 2px solid #3e3a39;
  }
  #header .header-wrap .header .nav-container .nav-item > .nav-link:only-child::after {
    display: none;
  }
  #header .header-wrap .header .nav-container .nav-item > .nav-link:only-child::before {
    display: none;
  }
  #header .header-wrap .header .nav-container .nav-item + .nav-item {
    margin-left: 0;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-link {
    height: auto;
    padding-bottom: 0;
    line-height: 0.5rem;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-child {
    display: none;
    visibility: visible;
    opacity: 1;
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 0.2rem;
    transform: none;
    box-shadow: none;
    border-radius: 0.2rem;
    transition: none;
    border: 1px solid #f1f1f1;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-child::after {
    display: none;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-child .nav-child-link {
    color: #3e3a39;
    text-align: left;
    padding: 0.1rem;
    border-bottom: 1px solid #f1f1f1;
  }
  #header .header-wrap .header .nav-container .nav-item .nav-child .nav-child-link:last-of-type {
    border-bottom: none;
  }
}

.wave-box-wrap {
  overflow: hidden;
}
.wave-box-wrap .wave-box {
  height: 5vw;
  width: 100%;
  animation: wave 28s linear infinite;
  background: repeat-x;
  background-position-y: 0;
  width: 400vw;
  background-size: auto 100%;
}

#footer {
  width: 100%;
  overflow: hidden;
}
#footer .footer-wrap {
  padding-top: 0.86rem;
  background-color: #0096e6;
}
#footer .footer-wrap .footer-top {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#footer .footer-wrap .footer-top .footer-menu {
  display: flex;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item + .menu-item {
  margin-left: 1.3rem;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item .title {
  color: #ffffff;
  font-size: 0.24rem;
  font-weight: bold;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item .title::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.04rem;
  margin-top: 0.18rem;
  background-color: #ffffff;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item .menu-chil {
  margin-top: 0.23rem;
  display: inline-block;
  flex-direction: column;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item .menu-chil a {
  transition: all 300ms;
  position: relative;
  display: block;
  line-height: 2;
  color: #ffffff;
  font-size: 0.2rem;
}
#footer .footer-wrap .footer-top .footer-menu .menu-item .menu-chil a:hover {
  text-decoration: underline;
}
#footer .footer-wrap .footer-top .stock .stock-item {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}
#footer .footer-wrap .footer-top .stock .stock-item + .stock-item {
  margin-top: 0.39rem;
}
#footer .footer-wrap .footer-top .stock .stock-item .icon {
  display: block;
  width: 0.2rem;
  margin: 0.02rem;
  margin-right: 0.19rem;
}
#footer .footer-wrap .footer-top .stock .stock-item .name {
  margin-bottom: 0.19rem;
  line-height: 1;
  font-size: 0.24rem;
  font-weight: bold;
}
#footer .footer-wrap .footer-top .stock .stock-item .text {
  line-height: 1;
  font-size: 0.28rem;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  #footer .footer-wrap .footer-top {
    display: block;
  }
  #footer .footer-wrap .footer-top .stock {
    display: flex;
    margin-top: 0.4rem;
  }
  #footer .footer-wrap .footer-top .stock .stock-item {
    margin-top: 0 !important;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 751px) {
  #footer .footer-wrap .footer-top .footer-menu {
    flex-wrap: wrap;
  }
  #footer .footer-wrap .footer-top .footer-menu .menu-item {
    width: 33.33%;
    margin-bottom: 0.3rem;
  }
  #footer .footer-wrap .footer-top .footer-menu .menu-item + .menu-item {
    margin-left: 0;
  }
  #footer .footer-wrap .footer-top .stock {
    justify-content: space-between;
  }
  #footer .footer-wrap .footer-top .stock .stock-item {
    margin-top: 0;
    margin-right: 0;
  }
}
#footer .footer-wrap .blogroll-wrap {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  margin: 0.5rem auto 0;
  color: #ffffff;
  font-size: 0.18rem;
}
#footer .footer-wrap .blogroll-wrap a {
  margin-right: 0.4rem;
  font-size: 0.18rem !important;
  color: #ffffff !important;
}
#footer .footer-wrap .blogroll-wrap a:hover {
  text-decoration: underline;
}
#footer .footer-wrap .footer-bottom {
  padding: 0.2rem 0;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .copyright {
  display: block;
  color: #ffffff;
  font-size: 0.18rem;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap {
  display: flex;
  align-items: center;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item {
  position: relative;
  flex-shrink: 0;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item .icon {
  height: 0.24rem;
  cursor: pointer;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item .qr-code {
  height: 0.82rem;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item + .media-item {
  margin-left: 0.4rem;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item .popout {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  height: 1.2rem;
  width: 1.2rem;
  padding: 0.05rem;
  border-radius: 0.1rem;
  transform: translateX(-50%);
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item .popout::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, 100%);
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid transparent;
  border-left: 0.1rem solid transparent;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item .popout .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .footer-wrap .footer-bottom .footer-bottom-container .media-wrap .media-item:hover .popout {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 751px) {
  #footer .footer-wrap .footer-bottom .footer-bottom-container {
    display: block;
  }
  #footer .footer-wrap .footer-bottom .footer-bottom-container .copyright {
    margin-bottom: 0.2rem;
  }
}

.broadside {
  position: fixed;
  right: 0.2rem;
  bottom: 20vh;
  width: 0.6rem;
  background-color: #ffffff;
  box-shadow: 0rem 0rem 0.1rem 0rem rgba(36, 54, 71, 0.08);
  border-radius: 0.3rem;
  z-index: 100;
}
.broadside .broadside-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.5rem;
  cursor: pointer;
}
.broadside .broadside-item img {
  height: 0.2rem;
}
.broadside .broadside-item.qr-code .popout {
  position: absolute;
  top: -0.3rem;
  left: -1.3rem;
  height: 1.2rem;
  width: 1.2rem;
  padding: 0.05rem;
  border-radius: 0.1rem;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
  box-shadow: 0px 0px 10px 0px rgba(165, 165, 165, 0.6);
}
.broadside .broadside-item.qr-code .popout::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  transform: translate(95%, -50%);
  border-bottom: 0.1rem solid transparent;
  border-top: 0.1rem solid transparent;
  border-left: 0.1rem solid #fff;
}
.broadside .broadside-item.qr-code .popout .img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.broadside .broadside-item.qr-code:hover .popout {
  visibility: visible;
  opacity: 1;
}

#nav {
  background-color: #f1f1f1;
}
#nav .nav-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 0.5rem;
}
#nav .nav-container a {
  transition: all 300ms;
  color: #999999;
  font-size: 0.16rem;
}
#nav .nav-container a::after {
  content: ">";
  padding-left: 0.15rem;
}
#nav .nav-container a:last-of-type::after {
  content: "";
}
#nav .nav-container a + a {
  margin-left: 0.15rem;
}
#nav .nav-container a:hover {
  color: #000;
}

#pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pagination a {
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  font-size: 0.18rem;
  border-radius: 50%;
  color: #888888;
  background-color: #f2f2f2;
}
#pagination a:hover {
  color: #ffffff;
  background-color: #004ea1;
}
#pagination .pagination-item + .pagination-item {
  margin-left: 0.1rem;
}
#pagination .pagination-item.active {
  color: #ffffff;
  background-color: #004ea1;
}
#pagination .prev {
  margin-right: 0.3rem;
}
#pagination .next {
  margin-left: 0.3rem;
}
#pagination .prev .active, #pagination .next .active {
  display: none;
}
#pagination .prev:hover .active, #pagination .next:hover .active {
  display: block;
}
#pagination .prev:hover .default, #pagination .next:hover .default {
  display: none;
}

#play-video-dialog {
  width: 9.6rem;
  max-width: 90vw;
  padding: 0.3rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
}
#play-video-dialog .title {
  margin-bottom: 0.27rem;
  color: #00a0e9;
  font-size: 0.24rem;
  line-height: 1;
  font-weight: bold;
}
#play-video-dialog .video {
  position: relative;
  overflow: hidden;
  background-color: #000;
  border-radius: 0.2rem;
}
@media screen and (max-width: 751px) {
  #play-video-dialog .video {
    height: auto;
    max-height: auto;
  }
}
#play-video-dialog .video video {
  width: 100%;
  height: 100%;
  max-height: 6rem;
}
#play-video-dialog .video .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.8rem;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
#play-video-dialog .video .icon img {
  width: 100%;
  transition: all 300ms;
}
#play-video-dialog .video .icon img:hover {
  transform: scale(1.1);
}
#play-video-dialog .poster-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-hotline-table {
  table-layout: fixed;
  width: 100%;
}
.service-hotline-table thead {
  border-radius: 0.2rem;
}
.service-hotline-table thead tr {
  height: 0.8rem;
  color: #ffffff;
  font-size: 0.18rem;
  background-color: #00a0e9;
}
.service-hotline-table thead tr th:first-of-type {
  border-radius: 0.2rem 0 0 0.2rem;
}
.service-hotline-table thead tr th:last-of-type {
  border-radius: 0 0.2rem 0.2rem 0;
}
.service-hotline-table tbody tr {
  border-radius: 0.2rem;
}
.service-hotline-table tbody tr th {
  color: #000000;
  font-size: 0.18rem;
  height: 0.6rem;
  font-weight: normal;
}
.service-hotline-table tbody tr:nth-of-type(even) {
  background-color: #f2f2f2;
}
.service-hotline-table tbody tr:nth-of-type(even) th:first-of-type {
  border-radius: 0.2rem 0 0 0.2rem;
}
.service-hotline-table tbody tr:nth-of-type(even) th:last-of-type {
  border-radius: 0 0.2rem 0.2rem 0;
}

.home-page {
  background-color: #f2f2f2;
}
.home-page .mySwiper {
  position: relative;
}
.home-page .mySwiper .swiper-wrapper .swiper-slide {
  max-height: 81vh;
}
.home-page .mySwiper .swiper-wrapper .swiper-slide .banner-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  top: 19.875%;
  z-index: 20;
  width: 100%;
  font-size: 0.66rem;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 751px) {
  .home-page .mySwiper .swiper-wrapper .swiper-slide {
    height: 280px;
  }
  .home-page .mySwiper .swiper-wrapper .swiper-slide .banner-text {
    font-size: 0.3rem;
  }
  .home-page .mySwiper .swiper-wrapper .swiper-slide .play-wrap {
    font-size: 0.2rem;
  }
  .home-page .mySwiper .swiper-wrapper .swiper-slide .play-wrap .play-icon {
    width: 0.5rem;
  }
}
.home-page .mySwiper .video {
  width: 100%;
  height: 100%;
  max-height: 81vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-page .mySwiper .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .mySwiper .cover {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .mySwiper .play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 0.28rem;
  transform: translate(-50%, -50%);
}
.home-page .mySwiper .play-wrap .play-icon {
  transition: all 300ms;
  width: 0.8rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.home-page .mySwiper .play-wrap .play-icon:hover {
  transform: scale(1.1);
}
.home-page .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 6.8rem;
  padding: 0.8rem;
  background: no-repeat center/cover;
}
.home-page .content .left-img {
  position: relative;
  overflow: hidden;
  width: 6.4rem;
  margin-right: 0.8rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.home-page .content .left-img::after {
  content: "";
  display: block;
  padding-top: 68.75%;
}
.home-page .content .left-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0.19rem;
}
.home-page .content .right .title {
  font-size: 0.44rem;
  color: #00a0e9;
  font-weight: bold;
}
.home-page .content .right .text {
  color: #888888;
  font-size: 0.2rem;
  line-height: 0.32rem;
  white-space: pre-wrap;
}
.home-page .content .right .details-link {
  display: flex;
  align-items: center;
  color: #00a0e9;
  font-size: 0.2rem;
  margin-top: 0.8rem;
}
.home-page .content .right .details-link .line-text {
  position: relative;
  z-index: 2;
}
.home-page .content .right .details-link .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.14rem;
  border-radius: 50%;
  cursor: pointer;
}
.home-page .content .right .details-link .circle .icon {
  position: relative;
  width: 0.26rem;
  z-index: 1;
}
.home-page .content .right .details-link .circle::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0;
  transform-origin: center right;
  transition: 0.3s cubic-bezier(0.17, 0.91, 0.4, 1.48) transform, 0.3s ease box-shadow;
  background-color: #004ea1;
}
.home-page .content .right .details-link:hover .circle::after {
  transform: scale(1.8);
}
@media screen and (max-width: 751px) {
  .home-page .content {
    display: block;
    padding: 0.2rem;
    margin: 0 auto;
  }
  .home-page .content .left-img {
    width: 100%;
    margin-bottom: 0.2rem;
    margin-left: 0;
  }
  .home-page .content .right .title {
    font-size: 0.4rem;
  }
}
.home-page .product {
  min-height: 8.6rem;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.home-page .product .product-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.home-page .product .product-container .title {
  color: #ffffff;
  font-size: 0.44rem;
  font-weight: bold;
}
.home-page .product .product-container .product-impose {
  position: relative;
  position: relative;
  overflow: hidden;
  margin-top: 0.57rem;
  overflow: visible;
}
.home-page .product .product-container .product-impose::after {
  content: "";
  display: block;
  padding-top: 42.1875%;
}
@media screen and (max-width: 751px) {
  .home-page .product .product-container .product-impose {
    position: relative;
    overflow: hidden;
  }
  .home-page .product .product-container .product-impose::after {
    content: "";
    display: block;
    padding-top: 150%;
  }
}
.home-page .product .product-container .product-impose .productSwiper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.home-page .product .product-container .product-impose .productSwiper .swiper-wrapper .swiper-slide {
  position: relative;
  border-radius: 0.2rem;
  overflow: hidden;
}
.home-page .product .product-container .product-impose .productSwiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
}
.home-page .product .product-container .product-impose .productSwiper .swiper-wrapper .swiper-slide .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.1rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.44rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1920px) {
  .home-page .product .product-container .product-impose .productSwiper .swiper-wrapper .swiper-slide .text {
    font-size: 0.3rem;
  }
}
.home-page .product .product-container .product-impose .swiper-button-next, .home-page .product .product-container .product-impose .swiper-button-prev {
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.home-page .product .product-container .product-impose .swiper-button-next.swiper-button-disabled, .home-page .product .product-container .product-impose .swiper-button-prev.swiper-button-disabled {
  opacity: 0.8;
  cursor: pointer;
}
.home-page .product .product-container .product-impose .swiper-button-next {
  right: -0.9rem;
}
.home-page .product .product-container .product-impose .swiper-button-next::after {
  content: "";
  width: 26px;
  height: 20px;
  background: no-repeat url(../images/right-arrow-icon.svg) center;
}
.home-page .product .product-container .product-impose .swiper-button-prev {
  left: -0.9rem;
}
.home-page .product .product-container .product-impose .swiper-button-prev::after {
  transform: rotate(180deg);
  content: "";
  width: 26px;
  height: 20px;
  background: no-repeat url(../images/right-arrow-icon.svg) center;
}
.home-page .news {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.16rem;
  padding-bottom: 0.76rem;
}
.home-page .news .title-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .news .title-nav .title {
  color: #00a0e9;
  font-size: 0.44rem;
  font-weight: bold;
}
.home-page .news .title-nav .details-link {
  display: flex;
  align-items: center;
  color: #00a0e9;
  font-size: 0.2rem;
}
.home-page .news .title-nav .details-link .line-text {
  position: relative;
  z-index: 2;
}
.home-page .news .title-nav .details-link .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.14rem;
  border-radius: 50%;
  cursor: pointer;
}
.home-page .news .title-nav .details-link .circle .icon {
  position: relative;
  width: 0.26rem;
  z-index: 1;
}
.home-page .news .title-nav .details-link .circle::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0;
  transform-origin: center right;
  transition: 0.3s cubic-bezier(0.17, 0.91, 0.4, 1.48) transform, 0.3s ease box-shadow;
  background-color: #004ea1;
}
.home-page .news .title-nav .details-link:hover .circle::after {
  transform: scale(1.8);
}
.home-page .news .news-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 0.38rem;
}
.home-page .news .news-container .news-item {
  display: block;
  width: 48.4375%;
  max-width: 6.2rem;
  border-radius: 0.2rem;
  background-color: #ffffff;
  box-shadow: 0rem 0.02rem 0.04rem 0rem rgba(7, 0, 2, 0.08);
}
@media screen and (max-width: 751px) {
  .home-page .news .news-container .news-item {
    width: 100%;
  }
  .home-page .news .news-container .news-item + .news-item {
    margin-top: 0.3rem;
  }
}
.home-page .news .news-container .news-item .img {
  transition: all 300ms;
}
.home-page .news .news-container .news-item:hover .img {
  transform: scale(1.1);
}
.home-page .news .news-container .news-item .cover-img {
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
}
.home-page .news .news-container .news-item .cover-img::after {
  content: "";
  display: block;
  padding-top: 64.5161290323%;
}
.home-page .news .news-container .news-item .cover-img .img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 300ms;
}
.home-page .news .news-container .news-item .news-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 2.94rem;
  padding: 0.34rem 0.72rem 0.4rem 0.4rem;
}
.home-page .news .news-container .news-item .news-content .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #00a0e9;
  font-size: 0.28rem;
  margin-bottom: 0.29rem;
}
.home-page .news .news-container .news-item .news-content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 0.32rem;
}
.home-page .news .news-container .news-item .news-content .time {
  color: #888888;
  font-size: 0.18rem;
}

.company-profile-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
}
.company-profile-page .page-container .rich-container {
  display: flex;
  justify-content: space-between;
}
.company-profile-page .page-container .rich-container img {
  border-radius: 0.2rem;
}
.company-profile-page .page-container .rich-container .left {
  width: 43.67%;
}
.company-profile-page .page-container .rich-container .left .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.79rem;
}
.company-profile-page .page-container .rich-container .left .list .li {
  position: relative;
  width: 1.31rem;
  height: 1.31rem;
  border-radius: 50%;
  border: solid 3px #19a9eb;
}
.company-profile-page .page-container .rich-container .left .list .li .top-text {
  position: absolute;
  top: 0.15rem;
  width: 100%;
  text-align: center;
  line-height: 1;
  color: rgba(85, 85, 85, 0.9);
}
.company-profile-page .page-container .rich-container .left .list .li .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  padding: 5px 0;
  text-align: center;
  font-size: 0.36rem;
  white-space: nowrap;
  font-weight: bold;
  background-color: #fff;
  color: rgba(0, 160, 233, 0.9);
  transform: translate(-50%, -50%);
}
.company-profile-page .page-container .rich-container .left .list .li .bottom-text {
  position: absolute;
  bottom: 0.15rem;
  width: 100%;
  text-align: center;
  line-height: 1;
  color: rgba(85, 85, 85, 0.9);
}
.company-profile-page .page-container .rich-container .left .rich-content {
  color: #555555;
  font-size: 0.2rem;
}
.company-profile-page .page-container .rich-container .left .rich-content p {
  margin-bottom: 0.5rem;
  line-height: 2;
  color: #555555;
  font-size: 0.2rem;
}
.company-profile-page .page-container .rich-container .right {
  width: 49.2%;
}
.company-profile-page .page-container .rich-container .right img {
  width: 100%;
}
.company-profile-page .page-container .rich-container .right img + img {
  margin-top: 0.4rem;
}
@media screen and (max-width: 751px) {
  .company-profile-page .page-container .rich-container {
    flex-direction: column;
  }
  .company-profile-page .page-container .rich-container .left {
    width: 100%;
  }
  .company-profile-page .page-container .rich-container .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.films-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.films-page .page-container .video-list {
  display: flex;
  flex-wrap: wrap;
}
.films-page .page-container .video-list .video-item {
  width: 32%;
  max-width: 4.1rem;
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 751px) {
  .films-page .page-container .video-list .video-item {
    width: 100%;
    max-width: auto;
  }
}
.films-page .page-container .video-list .video-item .cover {
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  overflow: hidden;
}
.films-page .page-container .video-list .video-item .cover::after {
  content: "";
  display: block;
  padding-top: 65.8536585366%;
}
.films-page .page-container .video-list .video-item .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.films-page .page-container .video-list .video-item .cover .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.films-page .page-container .video-list .video-item .cover .icon img {
  transition: all 300ms;
}
.films-page .page-container .video-list .video-item .cover .icon img:hover {
  transform: scale(1.1);
}
.films-page .page-container .video-list .video-item .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.33rem;
  color: #555555;
  font-size: 0.2rem;
  text-align: center;
}
.films-page .page-container .video-list .video-item:nth-of-type(3n-1) {
  margin: 0 1.9%;
}

.certification-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.certification-page .page-container .container {
  display: flex;
  justify-content: space-between;
}
.certification-page .page-container .container .divide-line {
  margin: 0 auto;
  border-left: 0.1rem dotted #f1f1f1;
}
.certification-page .page-container .container .divide-line .dotted {
  width: 0.14rem;
  height: 0.14rem;
  margin: 2.26rem auto;
  border-radius: 50%;
  transform: translateX(-0.12rem);
  background-color: #00a0e9;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container {
  width: 5.2rem;
  overflow: auto;
  max-height: 5rem;
  padding: 0.4rem 0.4rem 0.5rem;
  background-color: #f1f1f1;
  border-radius: 0.2rem;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .title {
  color: #00a0e9;
  font-size: 0.42rem;
  line-height: 1;
  font-weight: bold;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .multi-line-list {
  margin-top: 0.3rem;
  margin-bottom: 0.2rem;
  padding-inline-start: 0.2rem;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .multi-line-list .li {
  color: #555555;
  line-height: 1.5;
  font-size: 0.2rem;
  list-style: circle;
  white-space: pre-wrap;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .multi-line-list .li + .li {
  margin-top: 0.15rem;
}
@media screen and (min-width: 1921px) {
  .certification-page .page-container .container .divide-line .dotted .dotted-container .img-box {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 6.6666666667px), 1fr));
  }
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .certification-page .page-container .container .divide-line .dotted .dotted-container .img-box {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 6.6666666667px), 1fr));
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .certification-page .page-container .container .divide-line .dotted .dotted-container .img-box {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 6.6666666667px), 1fr));
  }
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  .certification-page .page-container .container .divide-line .dotted .dotted-container .img-box {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 6.6666666667px), 1fr));
  }
}
@media screen and (max-width: 751px) {
  .certification-page .page-container .container .divide-line .dotted .dotted-container .img-box {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 6.6666666667px), 1fr));
  }
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .img-box .img-box-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.certification-page .page-container .container .divide-line .dotted .dotted-container .img-box .img-box-item img {
  display: block;
  height: 0.78rem;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.certification-page .page-container .container .divide-line .dotted .left {
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 1.1rem;
  transform: translate(0, -50%);
}
.certification-page .page-container .container .divide-line .dotted .left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  transform: translate(95%, -50%);
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-left: 0.1rem solid #f1f1f1;
}
.certification-page .page-container .container .divide-line .dotted .right {
  position: absolute;
  top: 50%;
  margin-left: 1.1rem;
  transform: translate(0, -50%);
}
.certification-page .page-container .container .divide-line .dotted .right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  transform: translate(-95%, -50%);
  border-top: 0.1rem solid transparent;
  border-bottom: 0.1rem solid transparent;
  border-right: 0.1rem solid #f1f1f1;
}
@media screen and (max-width: 751px) {
  .certification-page .page-container .container {
    display: block;
  }
  .certification-page .page-container .container .divide-line {
    border: none !important;
  }
  .certification-page .page-container .container .dotted {
    height: auto !important;
    width: auto !important;
    transform: none !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    background-color: transparent !important;
  }
  .certification-page .page-container .container .right, .certification-page .page-container .container .left {
    position: relative !important;
    top: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0.3rem;
    transform: none !important;
  }
  .certification-page .page-container .container .right::after, .certification-page .page-container .container .left::after {
    display: none;
  }
  .certification-page .page-container .container .dotted-container {
    width: 100% !important;
  }
}

.team-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.team-page .page-container .team-list {
  margin-bottom: 1rem;
}
.team-page .page-container .team-list .li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.team-page .page-container .team-list .li + .li {
  margin-top: 0.4rem;
}
.team-page .page-container .team-list .li .cover {
  position: relative;
  overflow: hidden;
  min-width: 4rem;
}
.team-page .page-container .team-list .li .cover::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.team-page .page-container .team-list .li .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.team-page .page-container .team-list .li .team-li-content {
  height: 100%;
  width: 53%;
  max-width: 6.79rem;
  padding: 0 4.68%;
  margin: 3.5% auto;
  border-right: 1px solid #dddddd;
}
.team-page .page-container .team-list .li .team-li-content .name {
  margin-bottom: 0.17rem;
  font-size: 0.24rem;
  color: #00a0e9;
}
.team-page .page-container .team-list .li .team-li-content .position {
  margin-bottom: 0.39rem;
  font-size: 0.2rem;
  color: #555555;
}
.team-page .page-container .team-list .li .team-li-content .content {
  font-size: 0.18rem;
  color: #555555;
  line-height: 1.5;
}
.team-page .page-container .team-list .li .icon {
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 5.8%;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
}
.team-page .page-container .team-list .li .icon img {
  width: 0.26rem;
}
.team-page .page-container .team-list .li .icon .active {
  display: none;
}
.team-page .page-container .team-list .li .icon .default {
  display: block;
}
.team-page .page-container .team-list .li .icon:hover {
  background-color: #004ea1;
}
.team-page .page-container .team-list .li .icon:hover .active {
  display: block;
}
.team-page .page-container .team-list .li .icon:hover .default {
  display: none;
}
@media screen and (max-width: 751px) {
  .team-page .page-container .team-list .li {
    display: block;
  }
  .team-page .page-container .team-list .li .cover {
    width: 100%;
    max-width: 100%;
  }
  .team-page .page-container .team-list .li .team-li-content {
    width: 100%;
    height: auto;
    border-right: none;
  }
  .team-page .page-container .team-list .li .icon {
    margin: 0.3rem auto;
  }
}

.team-dialog {
  display: flex;
  width: 85%;
  max-width: 12.8rem;
  border-radius: 0.2rem;
  overflow: hidden;
  background-clip: inherit !important;
  background-color: #ffffff;
}
.team-dialog .layui-layer-content {
  width: 100%;
}
.team-dialog .team-dialog-container {
  position: relative;
  display: flex;
  padding: 0.93rem 0.4rem 0.5rem !important;
  background-color: #ffffff;
}
.team-dialog .team-dialog-container .close-icon {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  width: 0.23rem;
  cursor: pointer;
}
.team-dialog .team-dialog-container .cover {
  position: relative;
  overflow: hidden;
  min-width: 4rem;
}
.team-dialog .team-dialog-container .cover::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.team-dialog .team-dialog-container .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.team-dialog .team-dialog-container .info-content {
  margin-left: 0.4rem;
}
.team-dialog .team-dialog-container .info-content .name {
  margin-bottom: 0.17rem;
  font-size: 0.24rem;
  color: #00a0e9;
}
.team-dialog .team-dialog-container .info-content .position {
  margin-bottom: 0.39rem;
  font-size: 0.2rem;
  color: #555555;
}
.team-dialog .team-dialog-container .info-content .content {
  font-size: 0.18rem;
  color: #555555;
  line-height: 1.5;
}
@media screen and (max-width: 751px) {
  .team-dialog .team-dialog-container {
    display: block;
    max-height: 75vh;
    overflow-y: auto;
  }
  .team-dialog .team-dialog-container .cover {
    width: 100%;
    min-width: auto;
  }
  .team-dialog .team-dialog-container .info-content {
    margin-top: 0.2rem;
    margin-left: 0;
  }
}

.product-page .page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background-image: linear-gradient(0deg, #fefefe 0%, #d1effc 100%);
}
.product-page .page-nav-list .page-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
  font-size: 0.24rem;
  padding: 0 0.44rem;
  cursor: pointer;
  color: rgba(0, 160, 233, 0.9);
}
.product-page .page-nav-list .page-nav-item.active {
  background-color: #fff;
}
@media screen and (max-width: 751px) {
  .product-page .page-nav-list {
    overflow-x: auto;
  }
  .product-page .page-nav-list .page-nav-item {
    height: 1rem;
    font-size: 0.2rem;
    white-space: nowrap;
  }
}
.product-page .product-swiper-wrap {
  display: none;
}
.product-page .product-swiper-wrap:first-of-type {
  display: block;
}
.product-page .product-swiper-wrap .product-swiper {
  display: flex;
  align-items: center;
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper {
  width: 100%;
  margin: 0 0.4rem;
  height: 6rem;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide {
  position: relative;
  background: no-repeat top/contain;
  overflow: visible;
  max-height: 6rem;
  padding: 0.2rem;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5rem;
  padding-left: 8%;
  padding-right: 15%;
  box-shadow: 0.02rem 0.01rem 0.08rem 0rem rgba(7, 0, 2, 0.12);
  border-radius: 0.3rem;
  text-align: justify;
  background: no-repeat center/cover;
}
@media screen and (max-width: 1024px) {
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .img-wrap {
  display: flex;
  justify-content: center;
  max-width: 3rem;
  max-height: 5.1rem;
  margin-bottom: -10%;
  margin-right: 0.2rem;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .img-wrap .img {
  -o-object-fit: contain;
     object-fit: contain;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .info {
  max-width: 4.5rem;
  margin-bottom: 0.6rem;
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .info .title {
  margin-bottom: 0.79rem;
  font-size: 0.42rem;
  color: rgba(0, 160, 233, 0.9);
}
@media screen and (max-width: 751px) {
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .info .title {
    font-size: 0.3rem;
  }
}
.product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .info .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555555;
  line-height: 1.5;
  font-size: 0.2rem;
}
@media screen and (max-width: 751px) {
  .product-page .product-swiper-wrap .product-swiper .mySwiper {
    position: relative;
    height: auto;
    margin: 0;
    border-radius: 0.3rem;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide {
    max-height: 7rem;
    background: no-repeat center/cover;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content {
    display: block;
    padding: 0.2rem;
    height: 6rem;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .img-wrap {
    margin-right: 0;
    margin-bottom: 0;
    max-width: none;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .img-wrap .img {
    margin: 0 auto;
    width: auto;
    height: 2rem;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-slide .slide-content .info .title {
    margin-bottom: 0.2rem;
    text-align: center;
  }
  .product-page .product-swiper-wrap .product-swiper .mySwiper .swiper-pagination {
    bottom: 25px !important;
  }
}
.product-page .product-swiper-wrap .product-swiper .swiper-button-next, .product-page .product-swiper-wrap .product-swiper .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #004ea1;
}
.product-page .product-swiper-wrap .product-swiper .swiper-button-next img, .product-page .product-swiper-wrap .product-swiper .swiper-button-prev img {
  width: 0.26rem;
}
.product-page .product-swiper-wrap .product-swiper .swiper-button-next::after, .product-page .product-swiper-wrap .product-swiper .swiper-button-prev::after {
  display: none;
}
.product-page .product-swiper-wrap .swiper-nav-wrap {
  display: flex;
  justify-content: center;
}
.product-page .product-swiper-wrap .swiper-nav {
  display: flex;
  align-items: flex-end;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  padding: 0 0.5rem;
}
@media screen and (max-width: 751px) {
  .product-page .product-swiper-wrap .swiper-nav {
    justify-content: flex-start;
  }
}
.product-page .product-swiper-wrap .swiper-nav .swiper-nav-li {
  white-space: nowrap;
  cursor: pointer;
}
.product-page .product-swiper-wrap .swiper-nav .swiper-nav-li + .swiper-nav-li {
  margin-left: 0.4rem;
}
.product-page .product-swiper-wrap .swiper-nav .swiper-nav-li .img {
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.product-page .product-swiper-wrap .swiper-nav .swiper-nav-li .text {
  transition: all 300ms;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 0.4rem;
  padding: 0 0.2rem;
  color: #333333;
  font-size: 0.16rem;
  width: 1.8rem;
  text-align: center;
}
.product-page .product-swiper-wrap .swiper-nav .swiper-nav-li.active .text {
  color: #fffefe;
  background-color: #00a0e9;
}

.serve-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}

.news-list-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.news-list-page .page-container .news-list {
  margin-bottom: 0.8rem;
}
.news-list-page .page-container .news-list .li {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 0.2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.news-list-page .page-container .news-list .li + .li {
  margin-top: 0.4rem;
}
.news-list-page .page-container .news-list .li .cover {
  position: relative;
  overflow: hidden;
  min-width: 4rem;
  border-radius: 0.2rem;
}
.news-list-page .page-container .news-list .li .cover::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.news-list-page .page-container .news-list .li .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 300ms;
}
.news-list-page .page-container .news-list .li .news-li-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 53%;
  max-width: 6.79rem;
  padding: 0 4.68%;
  margin: 3.5% auto;
  border-right: 1px solid #dddddd;
}
.news-list-page .page-container .news-list .li .news-li-content .title {
  transition: all 300ms;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.17rem;
  font-size: 0.24rem;
  color: #333333;
}
.news-list-page .page-container .news-list .li .news-li-content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: 0.18rem;
  color: #555555;
}
.news-list-page .page-container .news-list .li .news-li-content .time {
  font-size: 0.18rem;
  color: #555555;
  line-height: 1.5;
}
.news-list-page .page-container .news-list .li .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5.8%;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon {
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon img {
  width: 0.26rem;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon .active {
  display: none;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon .default {
  display: block;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon:hover {
  background-color: #004ea1;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon:hover .active {
  display: block;
}
.news-list-page .page-container .news-list .li .icon-wrap .icon:hover .default {
  display: none;
}
.news-list-page .page-container .news-list .li:hover .cover .img {
  transform: scale(1.1);
}
.news-list-page .page-container .news-list .li:hover .news-li-content .title {
  color: #00a0e9;
}
@media screen and (max-width: 751px) {
  .news-list-page .page-container .news-list .li {
    display: block;
  }
  .news-list-page .page-container .news-list .li .cover {
    width: 100%;
    max-width: 100%;
  }
  .news-list-page .page-container .news-list .li .news-li-content {
    width: 100%;
    height: auto;
    border-right: none;
  }
  .news-list-page .page-container .news-list .li .news-li-content .time {
    margin-top: 0.3rem;
  }
  .news-list-page .page-container .news-list .li .icon-wrap {
    margin: 0.3rem auto;
  }
}

.simple-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.simple-page .page-container .title {
  margin-top: 1rem;
  margin-bottom: 0.19rem;
  color: #00a0e9;
  font-weight: bold;
  font-size: 0.24rem;
  text-align: center;
}
.simple-page .page-container .time {
  margin-bottom: 0.38rem;
  padding-bottom: 0.29rem;
  color: #7d7d7d;
  text-align: center;
  font-size: 0.16rem;
  border-bottom: 1px solid #e5e5e5;
}
.simple-page .page-container .rich-content {
  color: #555555;
  font-size: 0.18rem;
}
.simple-page .page-container .rich-content p {
  line-height: 0.32rem;
}
.simple-page .page-container .rich-content img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 751px) {
  .simple-page .page-container .rich-content img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100% !important;
    height: auto !important;
  }
}
.simple-page .page-container .page-pagination-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0.9rem;
}
.simple-page .page-container .page-pagination-nav a {
  transition: all 300ms;
  position: relative;
  display: flex;
  align-items: center;
  color: #7d7d7d;
  font-size: 0.18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.simple-page .page-container .page-pagination-nav a:hover {
  color: #000;
}
.simple-page .page-container .page-pagination-nav a:hover.prev::after, .simple-page .page-container .page-pagination-nav a:hover.prev::before, .simple-page .page-container .page-pagination-nav a:hover.next::after, .simple-page .page-container .page-pagination-nav a:hover.next::before {
  border-color: #000;
}
.simple-page .page-container .page-pagination-nav a.back-list {
  flex-shrink: 0;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.simple-page .page-container .page-pagination-nav a.prev {
  padding-left: 0.03rem;
  width: 100%;
}
.simple-page .page-container .page-pagination-nav a.prev::before {
  transition: all 300ms;
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.08rem;
  height: 0.08rem;
  margin-right: 0.3rem;
  transform: rotate(45deg);
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}
.simple-page .page-container .page-pagination-nav a.prev::after {
  transition: all 300ms;
  content: "";
  flex-shrink: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.12rem;
  left: 0.2rem;
  border-left: 1px solid #e5e5e5;
}
.simple-page .page-container .page-pagination-nav a.next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.03rem;
  width: 100%;
}
.simple-page .page-container .page-pagination-nav a.next::before {
  transition: all 300ms;
  content: "";
  display: block;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  height: 0.12rem;
  border-left: 1px solid #e5e5e5;
}
.simple-page .page-container .page-pagination-nav a.next::after {
  transition: all 300ms;
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.08rem;
  height: 0.08rem;
  margin-left: 0.3rem;
  transform: rotate(-45deg);
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.store-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.store-page .page-container .store-swiper-wrap {
  position: relative;
  max-width: 10.93rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: visible;
}
.store-page .page-container .store-swiper-wrap::after {
  content: "";
  display: block;
  padding-top: 56.7226890756%;
}
@media screen and (max-width: 751px) {
  .store-page .page-container .store-swiper-wrap {
    width: 100%;
  }
}
.store-page .page-container .store-swiper-wrap .swiper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  overflow: visible;
}
.store-page .page-container .store-swiper-wrap .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 85%;
  max-width: 9rem;
  border-radius: 0.2rem;
  background: no-repeat center/cover;
  border: solid 0.03rem #ffffff;
}
.store-page .page-container .store-swiper-wrap .swiper .swiper-slide::after {
  content: "";
  display: block;
  padding-top: 60%;
}
.store-page .page-container .store-swiper-wrap .swiper-button-next, .store-page .page-container .store-swiper-wrap .swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #004ea1;
}
.store-page .page-container .store-swiper-wrap .swiper-button-next img, .store-page .page-container .store-swiper-wrap .swiper-button-prev img {
  width: 0.26rem;
}
.store-page .page-container .store-swiper-wrap .swiper-button-next::after, .store-page .page-container .store-swiper-wrap .swiper-button-prev::after {
  display: none;
}
.store-page .page-container .store-swiper-wrap .swiper-button-next {
  right: -0.7rem;
}
.store-page .page-container .store-swiper-wrap .swiper-button-prev {
  left: -0.7rem;
}
.store-page .page-container .store-container-wrap .store-container {
  display: none;
  align-items: center;
  margin-top: 0.2rem;
  margin-bottom: 1.2rem;
}
.store-page .page-container .store-container-wrap .store-container:first-of-type {
  display: flex;
}
.store-page .page-container .store-container-wrap .store-container .store-name-wrap {
  position: relative;
  width: 1.56rem;
  height: 1.56rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: solid 0.03rem #19a9eb;
}
.store-page .page-container .store-container-wrap .store-container .store-name-wrap .name {
  position: absolute;
  min-width: 1.6rem;
  top: 50%;
  left: 50%;
  font-size: 0.36rem;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  line-height: 2;
  color: rgba(0, 160, 233, 0.9);
  transform: translate(-50%, -50%);
}
.store-page .page-container .store-container-wrap .store-container .text {
  width: 100%;
  margin: 0 8.9%;
  padding-right: 8.9%;
  color: #555555;
  font-size: 0.2rem;
  line-height: 2;
  border-right: 1px solid #e5e5e5;
}
.store-page .page-container .store-container-wrap .store-container .store-info {
  flex-shrink: 0;
  max-width: 2.2rem;
}
.store-page .page-container .store-container-wrap .store-container .store-info .info-item {
  color: #00a0e9;
}
.store-page .page-container .store-container-wrap .store-container .store-info .info-item + .info-item {
  margin-top: 0.2rem;
}
.store-page .page-container .store-container-wrap .store-container .store-info .info-item .title {
  font-size: 0.2rem;
}
.store-page .page-container .store-container-wrap .store-container .store-info .info-item .info {
  font-size: 0.3rem;
}
@media screen and (max-width: 751px) {
  .store-page .page-container .store-container-wrap .store-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .store-page .page-container .store-container-wrap .store-container .text {
    width: 100%;
    margin: 0.5rem auto;
    padding: 0;
    border: none;
  }
  .store-page .page-container .store-container-wrap .store-container .store-info {
    width: 100%;
    max-width: inherit;
  }
}

.contact-us-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.contact-us-page .page-container .contact-us-container {
  display: flex;
  border-radius: 0.2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.contact-us-page .page-container .contact-us-container .left {
  width: 31.25%;
  padding: 1% 3.125%;
  flex-shrink: 0;
  background-color: #f2f2f2;
}
.contact-us-page .page-container .contact-us-container .left .info-item {
  display: flex;
  align-items: flex-start;
  padding: 13.5% 0;
}
.contact-us-page .page-container .contact-us-container .left .info-item + .info-item {
  border-top: 1px solid #dddddd;
}
.contact-us-page .page-container .contact-us-container .left .info-item .icon {
  width: 0.31rem;
  margin-right: 0.3rem;
}
.contact-us-page .page-container .contact-us-container .left .info-item .title {
  margin-bottom: 0.21rem;
  color: #00a0e9;
  font-size: 0.24rem;
}
.contact-us-page .page-container .contact-us-container .left .info-item .text {
  color: #555555;
  font-size: 0.18rem;
}
.contact-us-page .page-container .contact-us-container .left .info-item .btn {
  display: block;
  width: 2rem;
  height: 0.6rem;
  margin: 0 auto;
  cursor: pointer;
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
  background-color: #19a9eb;
  border-radius: 0.2rem;
}
.contact-us-page .page-container .contact-us-container .right {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.2rem;
}
@media screen and (max-width: 751px) {
  .contact-us-page .page-container .contact-us-container {
    flex-direction: column-reverse;
  }
  .contact-us-page .page-container .contact-us-container .left {
    width: 100%;
  }
}

.contact-us-dialog-wrap {
  max-width: 4.8rem;
  width: 85%;
}
.contact-us-dialog-wrap .contact-us-dialog {
  position: relative;
  height: 4rem;
  padding: 0.4rem 0.4rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
}
.contact-us-dialog-wrap .contact-us-dialog .close-icon {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.11rem;
  height: 0.11rem;
  cursor: pointer;
}
.contact-us-dialog-wrap .contact-us-dialog .title {
  margin-bottom: 0.37rem;
  color: #00a0e9;
  text-align: center;
  font-size: 0.24rem;
  font-weight: bold;
}
.contact-us-dialog-wrap .contact-us-dialog .form .form-item {
  display: flex;
  align-items: center;
  border-radius: 0.05rem;
  height: 0.6rem;
  padding: 0 0.22rem;
  border: solid 0.01rem #f2f2f2;
}
.contact-us-dialog-wrap .contact-us-dialog .form .form-item + .form-item {
  margin-top: 0.1rem;
}
.contact-us-dialog-wrap .contact-us-dialog .form .form-item label {
  white-space: nowrap;
  padding-right: 0.22rem;
  color: #666666;
  font-size: 0.16rem;
}
.contact-us-dialog-wrap .contact-us-dialog .form .form-item input {
  height: 100%;
  width: 100%;
  font-size: 0.16rem;
  color: #000;
}
.contact-us-dialog-wrap .contact-us-dialog .submit-btn {
  display: block;
  width: 1.4rem;
  height: 0.6rem;
  margin: 0.7rem auto 0;
  background-color: #00a0e9;
  border-radius: 0.2rem;
  color: #ffffff;
  font-size: 0.18rem;
  cursor: pointer;
}

.recruit-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.recruit-page .page-container .recruit-list {
  margin-bottom: 0.8rem;
}
.recruit-page .page-container .recruit-list .recruit-header {
  display: flex;
  align-items: center;
  height: 0.8rem;
  padding: 0 0.53rem;
  background-color: #00a0e9;
  border-radius: 0.2rem;
}
.recruit-page .page-container .recruit-list .recruit-header .head-item {
  width: 33%;
  color: #ffffff;
  font-size: 0.18rem;
}
.recruit-page .page-container .recruit-list .recruit-header .head-item:last-of-type {
  width: 0.5rem;
  text-align: center;
}
.recruit-page .page-container .recruit-list .recruit-item {
  border-bottom: 1px solid #e5e5e5;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head {
  display: flex;
  align-items: center;
  height: 0.81rem;
  padding: 0 0.53rem;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item {
  width: 33%;
  color: #000000;
  font-size: 0.18rem;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item:last-of-type {
  width: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item.operation i {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: block;
  width: 0.17rem;
  height: 0.17rem;
  cursor: pointer;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item.operation i::after {
  transition: all 300ms;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 0.17rem;
  transform: translate(-50%, -50%);
  border-left: 1px solid #000000;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item.operation i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  transform: translateY(-50%);
  border-top: 1px solid #000000;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-head .text-item.operation.active i::after {
  height: 0;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-container {
  display: none;
  padding: 0.08rem 0.53rem 0.32rem;
}
.recruit-page .page-container .recruit-list .recruit-item .recruit-item-container .btn {
  width: 1.2rem;
  height: 0.5rem;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.16rem;
  background-color: #00a0e9;
  border-radius: 0.05rem;
}
@media screen and (max-width: 751px) {
  .recruit-page .page-container .recruit-list .recruit-item {
    border: 1px solid #e5e5e5;
    border-radius: 0.1rem;
    padding: 0.1rem;
  }
  .recruit-page .page-container .recruit-list .recruit-item + .recruit-item {
    margin-top: 0.1rem;
  }
  .recruit-page .page-container .recruit-list .recruit-item .text-item {
    width: 100% !important;
    line-height: 2;
  }
  .recruit-page .page-container .recruit-list .recruit-item .text-item:nth-of-type(1)::before {
    content: "招聘岗位: ";
  }
  .recruit-page .page-container .recruit-list .recruit-item .text-item:nth-of-type(2)::before {
    content: "招聘部门: ";
  }
  .recruit-page .page-container .recruit-list .recruit-item .text-item:nth-of-type(3)::before {
    content: "工作地点: ";
  }
  .recruit-page .page-container .recruit-list .recruit-item .text-item.operation {
    margin-top: 0.1rem;
    margin-bottom: 0.2rem;
    height: 0.4rem;
    border: 1px solid #f5f5f5;
  }
  .recruit-page .page-container .recruit-list .recruit-item .recruit-item-head {
    display: block;
    height: auto;
    padding: 0;
  }
  .recruit-page .page-container .recruit-list .recruit-item .recruit-item-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.recruit-dialog-wrap {
  max-width: 4.8rem;
  width: 85%;
}
.recruit-dialog-wrap .recruit-dialog {
  position: relative;
  padding: 0.4rem 0.4rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
}
.recruit-dialog-wrap .recruit-dialog .close-icon {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.11rem;
  height: 0.11rem;
  cursor: pointer;
}
.recruit-dialog-wrap .recruit-dialog .title {
  margin-bottom: 0.37rem;
  color: #00a0e9;
  text-align: center;
  font-size: 0.24rem;
  font-weight: bold;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item {
  display: flex;
  align-items: center;
  border-radius: 0.05rem;
  height: 0.6rem;
  padding: 0 0.22rem;
  border: solid 0.01rem #f2f2f2;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item + .form-item {
  margin-top: 0.1rem;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item label {
  white-space: nowrap;
  padding-right: 0.22rem;
  color: #666666;
  font-size: 0.16rem;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item input {
  height: 100%;
  width: 100%;
  font-size: 0.16rem;
  color: #000;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item.resume {
  justify-content: space-between;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item.resume .browse-btn {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  color: #666666;
  font-size: 0.16rem;
  border-left: 1px solid #f2f2f2;
  padding-left: 0.24rem;
}
.recruit-dialog-wrap .recruit-dialog .form .form-item.resume .browse-btn input {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  cursor: pointer;
}
.recruit-dialog-wrap .recruit-dialog .submit-btn {
  display: block;
  width: 1.4rem;
  height: 0.6rem;
  margin: 0.7rem auto 0;
  background-color: #00a0e9;
  border-radius: 0.2rem;
  color: #ffffff;
  font-size: 0.18rem;
  cursor: pointer;
}

.feedback-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.feedback-page .page-container .form {
  margin-bottom: 1.5rem;
}
.feedback-page .page-container .form .form-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 31.25%;
  max-width: 4rem;
  height: 0.6rem;
  padding: 0 0.3rem;
  color: #888888;
  font-size: 0.18rem;
  background-color: #f2f2f2;
  border-radius: 0.2rem;
}
.feedback-page .page-container .form .form-item input {
  margin-left: 0.34rem;
  width: 100%;
}
.feedback-page .page-container .form .form-item input::-moz-placeholder {
  color: #bbbbbb;
}
.feedback-page .page-container .form .form-item input::placeholder {
  color: #bbbbbb;
}
@media screen and (max-width: 751px) {
  .feedback-page .page-container .form .form-item {
    width: 100%;
    margin: 0 auto;
    max-width: none;
    margin-bottom: 0.3rem;
  }
}
.feedback-page .page-container .form .form-textarea {
  padding: 0.22rem 0.3rem;
  background-color: #f2f2f2;
  border-radius: 0.2rem;
  margin: 0.3rem auto;
}
.feedback-page .page-container .form .form-textarea .label {
  color: #888888;
  font-size: 0.18rem;
}
.feedback-page .page-container .form .form-textarea textarea {
  width: 100%;
  height: 3.24rem;
  font-size: 0.16rem;
  margin-top: 0.2rem;
}
.feedback-page .page-container .form .form-textarea textarea::-moz-placeholder {
  color: #bbbbbb;
}
.feedback-page .page-container .form .form-textarea textarea::placeholder {
  color: #bbbbbb;
}
.feedback-page .page-container .form .form-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 751px) {
  .feedback-page .page-container .form .form-block {
    display: block;
  }
}
.feedback-page .page-container .form .submit-btn {
  width: 2rem;
  height: 0.6rem;
  background-color: #19a9eb;
  border-radius: 0.2rem;
  font-size: 0.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

.duty-list-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.duty-list-page .page-container .duty-list {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1921px) {
  .duty-list-page .page-container .duty-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 26.6666666667px), 1fr));
  }
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .duty-list-page .page-container .duty-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 26.6666666667px), 1fr));
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .duty-list-page .page-container .duty-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 26.6666666667px), 1fr));
  }
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  .duty-list-page .page-container .duty-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 26.6666666667px), 1fr));
  }
}
@media screen and (max-width: 751px) {
  .duty-list-page .page-container .duty-list {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 26.6666666667px), 1fr));
  }
}
.duty-list-page .page-container .duty-list .duty-li {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0.2rem;
  background-color: #f2f2f2;
}
.duty-list-page .page-container .duty-list .duty-li .cover {
  flex-shrink: 0;
  border-radius: 0.2rem;
  position: relative;
  overflow: hidden;
}
.duty-list-page .page-container .duty-list .duty-li .cover::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.duty-list-page .page-container .duty-list .duty-li .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 300ms;
}
.duty-list-page .page-container .duty-list .duty-li:hover .img {
  transform: scale(1.1);
}
.duty-list-page .page-container .duty-list .duty-li .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0.3rem 0.48rem 0.29rem 0.3rem;
}
.duty-list-page .page-container .duty-list .duty-li .container .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
  color: #00a0e9;
  font-size: 0.2rem;
}
.duty-list-page .page-container .duty-list .duty-li .container .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555555;
  line-height: 1.5;
  font-size: 0.18rem;
  margin-bottom: 0.44rem;
}
.duty-list-page .page-container .duty-list .duty-li .container .time {
  color: #888888;
  font-size: 0.18rem;
}

.search-page .banner-box {
  position: relative;
}
.search-page .banner-box .search-box {
  position: absolute;
  top: 60%;
  left: 50%;
  max-width: 8rem;
  width: 85%;
  transform: translate(-50%, -50%);
}
.search-page .banner-box .search-box .text {
  margin-bottom: 0.38rem;
  color: #ffffff;
  font-size: 0.24rem;
  text-align: center;
}
.search-page .banner-box .search-box .input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  height: 0.61rem;
  padding-left: 0.3rem;
  padding-right: 0.07rem;
  border-radius: 0.3rem;
  background-color: #ffffff;
}
.search-page .banner-box .search-box .input-box .input {
  width: 100%;
  font-size: 0.16rem;
}
.search-page .banner-box .search-box .input-box .input::-moz-placeholder {
  color: #999999;
}
.search-page .banner-box .search-box .input-box .input::placeholder {
  color: #999999;
}
.search-page .banner-box .search-box .input-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #004ea1;
}
.search-page .banner-box .search-box .input-box button .icon {
  width: 0.18rem;
}
@media screen and (max-width: 751px) {
  .search-page .banner-box .w-full {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 50vh;
  }
}
.search-page .search-top {
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  color: #666666;
  font-size: 0.18rem;
  border-bottom: 1px solid #e5e5e5;
}
.search-page .search-top span {
  color: #00a0e9;
}
.search-page .news-list .news-li-content .title span {
  color: #00a0e9 !important;
}

.hot-line-page .page-container {
  max-width: 12.8rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 0.58rem;
}
.hot-line-page .page-container .page-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.hot-line-page .page-container .page-nav .page-nav-item {
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 0.6rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
  font-size: 0.2rem;
  cursor: pointer;
  color: rgba(0, 160, 233, 0.9);
  border: solid 0.02rem #19a9eb;
}
.hot-line-page .page-container .page-nav .page-nav-item + .page-nav-item {
  margin-left: 0.1rem;
}
.hot-line-page .page-container .page-nav .page-nav-item.active {
  color: rgba(255, 255, 255, 0.9);
  background-color: #19a9eb;
}
.hot-line-page .page-container .nav-content {
  display: none;
  margin-bottom: 0.5rem;
}
.hot-line-page .page-container .nav-content:first-of-type {
  display: block;
}
.hot-line-page .page-container .nav-content .news-list {
  margin-bottom: 0.8rem;
}
.hot-line-page .page-container .nav-content .news-list .li {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 0.2rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.hot-line-page .page-container .nav-content .news-list .li + .li {
  margin-top: 0.4rem;
}
.hot-line-page .page-container .nav-content .news-list .li .cover {
  position: relative;
  overflow: hidden;
  min-width: 4rem;
  border-radius: 0.2rem;
}
.hot-line-page .page-container .nav-content .news-list .li .cover::after {
  content: "";
  display: block;
  padding-top: 65%;
}
.hot-line-page .page-container .nav-content .news-list .li .cover .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 300ms;
}
.hot-line-page .page-container .nav-content .news-list .li .news-li-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 53%;
  max-width: 6.79rem;
  padding: 0 4.68%;
  margin: 3.5% auto;
  border-right: 1px solid #dddddd;
}
.hot-line-page .page-container .nav-content .news-list .li .news-li-content .title {
  transition: all 300ms;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.17rem;
  font-size: 0.24rem;
  color: #333333;
}
.hot-line-page .page-container .nav-content .news-list .li .news-li-content .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  font-size: 0.18rem;
  color: #555555;
}
.hot-line-page .page-container .nav-content .news-list .li .news-li-content .time {
  font-size: 0.18rem;
  color: #555555;
  line-height: 1.5;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5.8%;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon {
  transition: all 300ms;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon img {
  width: 0.26rem;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon .active {
  display: none;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon .default {
  display: block;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon:hover {
  background-color: #004ea1;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon:hover .active {
  display: block;
}
.hot-line-page .page-container .nav-content .news-list .li .icon-wrap .icon:hover .default {
  display: none;
}
.hot-line-page .page-container .nav-content .news-list .li:hover .cover .img {
  transform: scale(1.1);
}
.hot-line-page .page-container .nav-content .news-list .li:hover .news-li-content .title {
  color: #00a0e9;
}
@media screen and (max-width: 751px) {
  .hot-line-page .page-container .nav-content .news-list .li {
    display: block;
  }
  .hot-line-page .page-container .nav-content .news-list .li .cover {
    width: 100%;
    max-width: 100%;
  }
  .hot-line-page .page-container .nav-content .news-list .li .news-li-content {
    width: 100%;
    height: auto;
    border-right: none;
  }
  .hot-line-page .page-container .nav-content .news-list .li .news-li-content .time {
    margin-top: 0.3rem;
  }
  .hot-line-page .page-container .nav-content .news-list .li .icon-wrap {
    margin: 0.3rem auto;
  }
}
.hot-line-page .page-container .nav-content .form .form-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 31.25%;
  max-width: 4rem;
  height: 0.6rem;
  padding: 0 0.3rem;
  color: #888888;
  font-size: 0.18rem;
  background-color: #f2f2f2;
  border-radius: 0.2rem;
}
.hot-line-page .page-container .nav-content .form .form-item input {
  margin-left: 0.34rem;
  width: 100%;
}
.hot-line-page .page-container .nav-content .form .form-item input::-moz-placeholder {
  color: #bbbbbb;
}
.hot-line-page .page-container .nav-content .form .form-item input::placeholder {
  color: #bbbbbb;
}
@media screen and (max-width: 751px) {
  .hot-line-page .page-container .nav-content .form .form-item {
    width: 100%;
    margin: 0 auto;
    max-width: none;
    margin-bottom: 0.3rem;
  }
}
.hot-line-page .page-container .nav-content .form .form-textarea {
  padding: 0.22rem 0.3rem;
  background-color: #f2f2f2;
  border-radius: 0.2rem;
  margin: 0.3rem auto;
}
.hot-line-page .page-container .nav-content .form .form-textarea .label {
  color: #888888;
  font-size: 0.18rem;
}
.hot-line-page .page-container .nav-content .form .form-textarea textarea {
  width: 100%;
  height: 3.24rem;
  font-size: 0.16rem;
  margin-top: 0.2rem;
}
.hot-line-page .page-container .nav-content .form .form-textarea textarea::-moz-placeholder {
  color: #bbbbbb;
}
.hot-line-page .page-container .nav-content .form .form-textarea textarea::placeholder {
  color: #bbbbbb;
}
.hot-line-page .page-container .nav-content .form .form-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 751px) {
  .hot-line-page .page-container .nav-content .form .form-block {
    display: block;
  }
}
.hot-line-page .page-container .nav-content .form .submit-btn {
  width: 2rem;
  height: 0.6rem;
  background-color: #19a9eb;
  border-radius: 0.2rem;
  font-size: 0.2rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

.layui-layer-content {
  height: auto !important;
}/*# sourceMappingURL=base.css.map */